home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / statusPrint.c,v < prev    next >
Text File  |  1989-10-24  |  2KB  |  82 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     89.10.24.12.27.04;  author jhh;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  * statusPrint.c --
  27.  *
  28.  *     Prints the message associated with a status value in 
  29.  *    the status.h file.
  30.  *
  31.  * Copyright 1986 Regents of the University of California
  32.  * Permission to use, copy, modify, and distribute this
  33.  * software and its documentation for any purpose and without
  34.  * fee is hereby granted, provided that the above copyright
  35.  * notice appear in all copies.  The University of California
  36.  * makes no representations about the suitability of this
  37.  * software for any purpose.  It is provided "as is" without
  38.  * express or implied warranty.
  39.  */
  40.  
  41. #ifndef lint
  42. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/status.c,v 1.4 89/08/08 12:52:30 douglis Exp $ SPRITE (Berkeley)";
  43. #endif not lint
  44.  
  45. #include <sprite.h>
  46. #include <status.h>
  47. #include <stdio.h>
  48.  
  49. /*
  50.  *----------------------------------------------------------------------
  51.  *
  52.  * Stat_PrintMsg --
  53.  *
  54.  *    Output an error message.
  55.  *
  56.  * Results:
  57.  *    None.
  58.  *
  59.  * Side effects:
  60.  *    A message gets printed on standard error, of the form
  61.  *    "string: message", where "string" is the argument to this
  62.  *    procedure and "message" is the standard error message
  63.  *    associated with "status".
  64.  *
  65.  *----------------------------------------------------------------------
  66.  */
  67.  
  68. void
  69. Stat_PrintMsg(status, string)
  70.     ReturnStatus status;        /* Error status. */
  71.     char *string;            /* Identifying string to output before
  72.                      * the error message string. */
  73. {
  74.     if (string == NULL) {
  75.     fprintf(stderr, "%s\n", Stat_GetMsg(status));
  76.     } else {
  77.     fprintf(stderr, "%s: %s\n", string, Stat_GetMsg(status));
  78.     }
  79. }
  80.  
  81. @
  82.